.veille-modal {
    height: var(--main-height);
    width:  var(--main-width);

    --modal-font: bold 35px 'Josefin Sans';

    position: absolute;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: rgba(0, 0, 0, 0.8);
}

.veille-modal.hidden {
    display: none;
}

.veille-modal .popup {
    width: 600px;
    height: 350px;

    border-radius: 10px;
    border: 5px solid var(--color-IV);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

    background-color: white;
    
    font: var(--modal-font);
    color: var(--color-IV);
    text-align: center;
}

.veille-modal .popup .counter {
    font-size: 70px;
}